home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / sun4.md / setjmp.h < prev    next >
C/C++ Source or Header  |  1991-06-11  |  413b  |  21 lines

  1. /*    setjmp.h    4.1    83/05/03    */
  2. /* $Header: /sprite/src/lib/include/sun3.md/RCS/setjmp.h,v 1.3 91/06/11 10:43:00 eklee Exp $ */
  3.  
  4. #ifndef _SETJMP
  5. #define _SETJMP
  6.  
  7. #include <cfuncproto.h>
  8.  
  9.  
  10. /*
  11.  * Only 10 words are needed for the VAX, but 15 for the Sun.  Use the
  12.  * larger of the two.
  13.  */
  14.  
  15. typedef int jmp_buf[15];
  16.  
  17. extern int setjmp _ARGS_((jmp_buf));
  18. extern void longjmp _ARGS_((jmp_buf, int));
  19.  
  20. #endif /* _SETJMP */
  21.